Triple Generic Structure

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Stores a triple of objects within a single struct. This struct is useful to use as the T of a collection, or as the TKey or TValue of a dictionary.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
[SerializableAttribute]
public struct Triple<TFirst, TSecond, TThird> : IComparable, 
	IComparable<Triple<TFirst, TSecond, TThird>>
Visual Basic (Declaration)
<SerializableAttribute> _
Public Structure Triple(Of TFirst, TSecond, TThird) _
	Implements IComparable, IComparable(Of Triple(Of TFirst, TSecond, TThird))
Visual C++
[SerializableAttribute]
generic<typename TFirst, typename TSecond, typename TThird>
public value class Triple : IComparable, 
	IComparable<Triple<TFirst, TSecond, TThird>>

Type Parameters

TFirst
TSecond
TThird

See Also